2a09733a32d3c602202942b75eea7ff2d95b409c,xwiki-platform-watchlist/plugin/src/main/java/com/xpn/xwiki/plugin/watchlist/WatchListPluginApi.java,WatchListPluginApi,removeDocument,#String#,112

Before Change


     */
    public boolean removeDocument(String wDoc) throws XWikiException
    {
        return getWatchListPlugin().removeWatchedElement(getXWikiContext().getUser(),
            wDoc, false, getXWikiContext());
    }

After Change


     */
    public boolean removeDocument(String wDoc) throws XWikiException
    {
        return getWatchListPlugin().getStore().removeWatchedElement(context.getUser(), wDoc, ElementType.DOCUMENT,
            context);
    }